home *** CD-ROM | disk | FTP | other *** search
- _root._gameOptions = new Object();
- _root._gameOptions._scoreToWin = -1;
- _root._gameOptions._paddleHitAcceleration = 1.25;
- _root._gameOptions._initialPuckSpeed = 6;
- _root._gameOptions._nPlayers = Math.floor(Math.random() * 2 + 2);
- _root._gameOptions._playerOptions = new Array();
- var i;
- i = 1;
- while(i <= _root._gameOptions._nPlayers)
- {
- _root._gameOptions._playerOptions[i] = new Object();
- _root._gameOptions._playerOptions[i]._isAIControlled = true;
- _root._gameOptions._playerOptions[i]._isExpert = Math.random() < 0.5;
- i++;
- }
- this.attachMovie("CRoundPongGame","CRoundPongGame1",10,{_x:150,_y:150,_isInDemoMode:true});
- this.attachMovie("CPlayButton","CPlayButton1",20,{_x:150,_y:150});
- AttachGameCursor(false);
- Mouse.show();
- this.stop();
-